projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
28881a5
)
(byte-compile-inline-expand): Complete Dave's
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Sun, 27 May 2001 11:34:56 +0000
(11:34 +0000)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Sun, 27 May 2001 11:34:56 +0000
(11:34 +0000)
patch to correct the error message as well.
lisp/emacs-lisp/byte-opt.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/byte-opt.el
b/lisp/emacs-lisp/byte-opt.el
index 95c9e71437278345ced6c84677bcafbead020eb6..86ccb7fc51cc207c81c39e02cc242bd3f6691287 100644
(file)
--- a/
lisp/emacs-lisp/byte-opt.el
+++ b/
lisp/emacs-lisp/byte-opt.el
@@
-269,7
+269,7
@@
(setq fn (or (and (fboundp name) (symbol-function name))
(cdr (assq name byte-compile-function-environment)))))
(if (and (consp fn) (eq (car fn) 'autoload))
- (error "File `%s' didn't define `%s'" (nth
2
fn) name))
+ (error "File `%s' didn't define `%s'" (nth
1
fn) name))
(if (symbolp fn)
(byte-compile-inline-expand (cons fn (cdr form)))
(if (byte-code-function-p fn)